/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #3e8e41;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffbf00;
}

/* Terms of Service Section */
.terms-of-service {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 40px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-of-service h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3e8e41;
}

.terms-of-service h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #3e8e41;
}

.terms-of-service p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.terms-of-service ul {
    list-style-type: disc;
    padding-left: 20px;
}

.terms-of-service a {
    color: #3e8e41;
    text-decoration: none;
}

.terms-of-service a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background-color: #3e8e41;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
